var vendor/golang.org/x/text/unicode/norm.formTable

16 uses

	vendor/golang.org/x/text/unicode/norm (current package)
		composition.go#L115: 	rb.f = *formTable[f]
		composition.go#L122: 	rb.f = *formTable[f]
		forminfo.go#L61: var formTable = []*formInfo{{
		normalize.go#L47: 	ft := formTable[f]
		normalize.go#L61: 	ft := formTable[f]
		normalize.go#L75: 	ft := formTable[f]
		normalize.go#L114: 	ft := formTable[f]
		normalize.go#L201: 	ft := formTable[f]
		normalize.go#L268: 	n, _ := formTable[f].quickSpan(inputBytes(b), 0, len(b), true)
		normalize.go#L275: 	n, ok := formTable[f].quickSpan(inputBytes(b), 0, len(b), atEOF)
		normalize.go#L289: 	n, ok := formTable[f].quickSpan(inputString(s), 0, len(s), atEOF)
		normalize.go#L360: 	n, _ := formTable[f].quickSpan(inputString(s), 0, len(s), true)
		normalize.go#L375: 	fd := formTable[f]
		normalize.go#L425: 	fd := formTable[f]
		normalize.go#L459: 	return lastBoundary(formTable[f], b)
		transform.go#L29: 	i, ok := formTable[f].quickSpan(inputBytes(b), 0, len(b), eof)